@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  background-color: #d9d9d9;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}
/* header section end */

.head{
    background-color: rgb(61, 56, 56) !important;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    border-width: 1px;
    height: 33px;    
}
.head a{
    text-decoration: none;
    color: #fff;   
    font-size: 19px;
    font-variant:initial;
    text-align: center;
    margin-inline: 5px;
    margin-left: 20px;
    margin-top: 50%;
    line-height: 33px;  
}

.head a:hover{
    color: turquoise;
    transition:all 0.2s ease-in-out;
    border-right-style: solid;
    border-left-style: solid;
   /* border-top-style: solid;*/
    /*border-bottom-style: solid;*/
    border-right-color: yellow;
    border-left-color: rgb(217, 255, 0);
   /* border-top-color: rgb(0, 255, 85);*/
    /*border-bottom-color: rgb(255, 123, 0);*/
    border-right-width: 2px;
    border-left-width: 2px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-radius: 8px;
   /* margin-right: 8px;
    margin-left: 5px;*/

}

.left{
    background-color: rgb(2, 58, 11);
    width:25%;
    /*float: inline-end;*/
    height: 448px;
    margin-top: 10px;
    justify-content: center;
    margin-left: 10px;
}

.left a{
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    align-items: center;
    margin-left: 12%;
    line-height: 15px; 
    transition: all 0.3s ease-in-out;
}

.left a:hover{
    color: aqua;
    font-size: large;
}

table{
    color: black;
    border-color: rgb(0, 0, 0);
    border-radius: 5px;
    border-spacing: 0;
    text-align: center;
    align-items: center;
    width: 1200px;
    margin-left: 4px;
}

table th{
    /* background-color: rgb(2, 61, 0); */
    color: white;
    font-weight: 100;
}

table td a{
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

table td a:hover{
  text-decoration: underline;
  color: #3e65da;

}

h2{
    color: teal;
    justify-content: center;
    margin-top: 18px;
    margin-left: 5px;
    margin-bottom: 8px;
}

/* Table Start Here */
.rwd-table {
  margin: auto;
  min-width: 300px;
  max-width: 100%;
  border-collapse: collapse;
  margin-left: 100px;
}

.rwd-table tr:first-child {
  border-top: none;
  background: #428bca;
  color: #fff;
  font-weight: 700;
}

.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5f9fc;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #ebf3f9;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  margin-top: .5em;
}

.rwd-table td:last-child {
  margin-bottom: .5em;
}

.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

.rwd-table {
  color: #333;
  border-radius: .4em;
  overflow: hidden;
}

.rwd-table tr {
  border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
  padding: .5em 1em;
}

@media screen and (max-width: 601px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;

  }
  .rwd-table{
    margin-left: -10px;
  }
}
@media screen and (min-width: 600px) {
  .rwd-table tr:hover:not(:first-child) {
    background-color: #d8e7f3;
  }
  .rwd-table td:before {
    display: none;
  }

.container{
  width: fit-content;
  margin-left: 50px;
}
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
}

/* Notification Table */

.rwd-table-2{
    margin: auto;
  min-width: 300px;
  max-width: 350px;
  border-collapse: collapse;
  margin-left: 20px;
}

.rwd-table-2 tr:first-child {
    border-top: none;
    background: #428bca;
    color: #fff;
  }
  
  .rwd-table-2 tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f5f9fc;
  }

  .rwd-table-2 tr:nth-child(odd):not(:first-child) {
    background-color: #ebf3f9;
  }
  
  .rwd-table-2 th {
    display: none;
  }
  
  .rwd-table-2 td {
    display: block;
  }
  
  .rwd-table-2 td:first-child {
    margin-top: .5em;
  }
  
  .rwd-table-2 td:last-child {
    margin-bottom: .5em;
  }
  
  .rwd-table-2 td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    width: 120px;
    display: inline-block;
    color: #000;
  }
  
  .rwd-table-2 th,
  .rwd-table-2 td {
    text-align: left;
  }
  
  .rwd-table-2 {
    color: #333;
    border-radius: .4em;
    overflow: hidden;
  }
  
  .rwd-table-2 tr {
    border-color: #bfbfbf;
  }
  
  .rwd-table-2 th,
  .rwd-table-2 td {
    padding: .5em 1em;
  }

  /* media screen */
  @media screen and (max-width: 601px) {
    .rwd-table-2 tr:nth-child(2) {
      border-top: none;
    }
  }
  @media screen and (min-width: 600px) {
    .rwd-table-2 tr:hover:not(:first-child) {
      background-color: #d8e7f3;
    }
    .rwd-table-2 td:before {
      display: none;
    }
    .rwd-table-2 th,
    .rwd-table-2 td {
      display: table-cell;
      padding: .25em .5em;
    }
    .rwd-table-2 th:first-child,
    .rwd-table-2 td:first-child {
      padding-left: 0;
    }
    .rwd-table-2 th:last-child,
    .rwd-table-2 td:last-child {
      padding-right: 0;
    }
    .rwd-table-2 th,
    .rwd-table-2 td {
      padding: 1em !important;
    }
  }


h1 {
  text-align: center;
  font-size: 2.4em;
  color: #2698c5;
}
.container {
  display: block;
  text-align: center;
}

.container h1{
  text-align: center;
  color: #000;
}
h3 {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.5em;
  color: #000000;
}
h3:before {
  content: "\25C0";
  position: absolute;
  left: -50px;
  -webkit-animation: leftRight 2s linear infinite;
  animation: leftRight 2s linear infinite;
}
h3:after {
  content: "\25b6";
  position: absolute;
  right: -50px;
  -webkit-animation: leftRight 2s linear infinite reverse;
  animation: leftRight 2s linear infinite reverse;
}
@-webkit-keyframes leftRight {
  0%    { -webkit-transform: translateX(0)}
  25%   { -webkit-transform: translateX(-10px)}
  75%   { -webkit-transform: translateX(10px)}
  100%  { -webkit-transform: translateX(0)}
}
@keyframes leftRight {
  0%    { transform: translateX(0)}
  25%   { transform: translateX(-10px)}
  75%   { transform: translateX(10px)}
  100%  { transform: translateX(0)}
}

/* footer */
footer {
  background-color: #4caf50; /* Green background */
  color: white; /* White text */
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: center; /* Center align items */
  margin-bottom: 20px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  padding: 5px 0;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-info {
  text-align: center;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column; /* Stack links vertically */
    align-items: center; /* Center align vertically stacked links */
  }

  .footer-menu a {
    margin: 5px 0; /* Add vertical spacing for stacked links */
  }
}

@media (max-width: 480px) {
  footer {
    padding: 15px;
  }

  .footer-menu a {
    font-size: 12px; /* Smaller font for very small screens */
  }

  .footer-info p {
    font-size: 12px;
  }
}
